home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / C / Applications / µSim 1.0.5 / FabLibsƒ / GeneralUsage.r < prev    next >
Encoding:
Text File  |  1995-11-28  |  1.5 KB  |  82 lines  |  [TEXT/CWIE]

  1. /*
  2. Copyright © 1993-1995 by Fabrizio Oddone
  3. ••• ••• ••• ••• ••• ••• ••• ••• ••• •••
  4. This source code is distributed as freeware: you can copy, exchange, modify this
  5. code as you wish. You may include this code in any kind of application: freeware,
  6. shareware, or commercial, provided that full credits are given.
  7. You may not sell or distribute this code for profit.
  8. */
  9. #include    "Types.r"
  10. #include    "BalloonTypes.r"
  11.  
  12. #include    "FabLibResIDs.h"
  13.  
  14.  
  15. resource 'STR ' (kSTR_EMAILADDR, purgeable) {
  16.     "Fabrizio Oddone <fab@kagi.com>"
  17. };
  18.  
  19. resource 'STR ' (kSTR_MAILTOURL, purgeable) {
  20.     "mailto:fab@kagi.com"
  21. };
  22.  
  23. resource 'STR ' (kSTR_WWWURLITA, purgeable) {
  24.     "http://www.di.unito.it/pub/WWW/www_student/apple/FabrizioOddone/"
  25. };
  26.  
  27. resource 'STR ' (kSTR_WWWURLUSA, purgeable) {
  28.     "http://www.kagi.com/authors/fab/"
  29. };
  30.  
  31.  
  32. resource 'hmnu' (kMENU_HCopyWebLocation, purgeable) {
  33.     HelpMgrVersion,
  34.     hmDefaultOptions,
  35.     0,
  36.     0,
  37.  
  38.         HMSkipItem { },            /* item -1:Missing menu items */
  39.     {
  40.  
  41.         HMSkipItem { },            /* item 0:Menu Title */
  42.         HMStringResItem {        /* item 1:Ita */
  43.             1200,3,
  44.             0,0,
  45.             0,0,
  46.             0,0
  47.         },
  48.         HMStringResItem {        /* item 2:USA */
  49.             1200,3,
  50.             0,0,
  51.             0,0,
  52.             0,0
  53.         }
  54.     }
  55. };
  56.  
  57. resource 'hmnu' (kMENU_HVisitWebLocation, purgeable) {
  58.     HelpMgrVersion,
  59.     hmDefaultOptions,
  60.     0,
  61.     0,
  62.  
  63.         HMSkipItem { },            /* item -1:Missing menu items */
  64.     {
  65.  
  66.         HMSkipItem { },            /* item 0:Menu Title */
  67.         HMStringResItem {        /* item 1:Ita */
  68.             1200,5,
  69.             0,0,
  70.             0,0,
  71.             0,0
  72.         },
  73.         HMStringResItem {        /* item 2:USA */
  74.             1200,5,
  75.             0,0,
  76.             0,0,
  77.             0,0
  78.         }
  79.     }
  80. };
  81.  
  82.